package com.telcordia.cvas.rpn;

public class BinaryMathOperatorSpy extends BinaryMathOperator {

	private int lhs;
	private int rhs;

	public int getLhs() {
		return lhs;
	}

	public int getRhs() {
		return rhs;
	}

	@Override
	protected int performOperation(int lhs, int rhs) {
		this.lhs = lhs;
		this.rhs = rhs;
		return 0;
	}

}
